Retrieve join/exit history of a group for calculating rewards
GET/groups/:group_name/history
This endpoint retrieves the join/exit history of a group
Request
Path Parameters
group_name stringrequired
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
user_id string
joined_at date-time
left_at date-time
[
{
"user_id": "string",
"joined_at": "2024-06-07T11:51:17.704Z",
"left_at": "2024-06-07T11:51:17.704Z"
}
]
Loading...